home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
Archives
/
Timing
/
DateBKIV.lha
/
DateBookIV
/
Rexx
/
Pano.dbk
< prev
next >
Wrap
Text File
|
1993-09-18
|
789b
|
38 lines
/* File : Pano.dbk
*
* $Project: DateBookIII
*
* $Module Id:
* $Author: Robert Hardy
* $Date Started: Fri Sep 18 1992
* $Version: 1
* $Revision 0
*
* Simple example of an event rexx macro. This one is triggered when
* a PaNorAmA meeting is imminent.
*
* $History:
* {ver} {initial} {date} {description of change} {SAR|SCR reference #}
*
* 1.0 RWH Fri Sep 18 1992 Initial rev
*
*/
parse arg event_time event_date cur_date
event_date = strip(event_date)
cur_date = strip(cur_date)
if event_date = cur_date then
do
x = open('t', 't:tsay', 'W')
x = writeln('t', 'wait until '||event_time)
x = writeln('t', 'sys:utilities/say Oh boy. Oh boy. Another PaNorAmA meeting coming up')
s = close('t')
address command 'run >nil: execute t:tsay'
end